 :root {
     --pc-red: #9b1c1c;
     --pc-navy: #1a2744;
     --pc-gold: #c9a84c;
     --pc-light: #f4f1ec;
     --pc-dark: #111827;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 body {
 
     background: var(--pc-light);
     color: var(--pc-dark);
     margin: 0;
 }

 /* ══ NAVBAR ══════════════════════════════════ */
 .pc-navbar {
     background: #fff;
     border-bottom: 2px solid #e2ddd6;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0.55rem 1.4rem;
     gap: 0.5rem;
 }

 /* brand */
 .brand-wrap {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     text-decoration: none;
 }

 .brand-logo {
     width: 46px;
     height: 46px;
     border-radius: 50%;
     background: var(--pc-red);
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.2rem;
     font-weight: 700;
     font-family: "Playfair Display", serif;
 }

 .brand-text .bt-small {
     display: block;
     font-size: 0.58rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--pc-red);
 }

 .brand-text .bt-big {
     display: block;
     font-size: 1.1rem;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--pc-navy);
     font-family: "Playfair Display", serif;
 }

 /* hamburger */
 .pc-toggler {
     border: 1px solid #ccc;
     background: none;
     padding: 0.35rem 0.55rem;
     border-radius: 3px;
     cursor: pointer;
     display: none;
 }

 .pc-toggler .bar {
     display: block;
     width: 22px;
     height: 2px;
     background: var(--pc-navy);
     margin: 4px 0;
     transition: all 0.3s;
 }

 .pc-toggler.open .bar:nth-child(1) {
     transform: translateY(6px) rotate(45deg);
 }

 .pc-toggler.open .bar:nth-child(2) {
     opacity: 0;
 }

 .pc-toggler.open .bar:nth-child(3) {
     transform: translateY(-6px) rotate(-45deg);
 }

 /* desktop nav */
 .pc-desktop-nav {
     display: flex;
     align-items: center;
     gap: 0;
 }

 .ndiv {
     width: 1px;
     height: 24px;
     background: #ddd;
     flex-shrink: 0;
 }

 .pc-nav-links {
     display: flex;
     align-items: center;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .pc-nav-links .nav-link {
     font-size: 1.0rem;
     letter-spacing: 0.06em;
     text-transform: capitalize;
     color: var(--pc-navy) !important;
     padding: 0.35rem 0.85rem !important;
     white-space: nowrap;
     transition: color 0.2s;
 }

 .pc-nav-links .nav-link:hover {
     color: var(--pc-red) !important;
 }

 /* search btn */
 .btn-pin {
     background: var(--pc-navy);
     color: #fff;
     border: none;
     border-radius: 2px;
     font-size: 0.9rem;
     letter-spacing: 0.05em;
     padding: 0.38rem 1rem;
     display: flex;
     align-items: center;
     gap: 0.4rem;
     text-transform: capitalize;
     white-space: nowrap;
     cursor: pointer;
     transition: background 0.2s;
     flex-shrink: 0;
 }

 .btn-pin:hover {
     background: var(--pc-red);
 }

 /* cultural dropdown */
 .cultural-wrap {
     position: relative;
 }

 .cultural-btn {
     display: flex;
     align-items: center;
     gap: 0.35rem;
     font-size: 1.0rem;
     letter-spacing: 0.06em;
     text-transform: capitalize;
     color: var(--pc-navy);
     background: none;
     border: none;
     cursor: pointer;
     padding: 0.35rem 0.85rem;
     white-space: nowrap;
     transition: color 0.2s;
     font-family: "EB Garamond", serif;
 }

 .cultural-btn:hover,
 .cultural-btn.active {
     color: var(--pc-red);
 }

 .cultural-btn .caret {
     font-size: 0.6rem;
     transition: transform 0.25s;
 }

 .cultural-btn.active .caret {
     transform: rotate(90deg);
 }

 .cultural-dropdown {
     display: none;
     position: absolute;
     top: calc(100% + 8px);
     right: 0;
     background: #fff;
     min-width: 240px;
     border: 1px solid #ddd;
     border-top: 3px solid var(--pc-red);
     box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
     z-index: 2000;
     list-style: none;
     margin: 0;
     padding: 0.5rem 0;
     animation: fadeDown 0.2s ease;
 }

 .cultural-dropdown.open {
     display: block;
 }

 @keyframes fadeDown {
     from {
         opacity: 0;
         transform: translateY(-6px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .cultural-dropdown li a {
     display: flex;
     align-items: center;
     gap: 0.55rem;
     padding: 0.55rem 1.2rem;
     font-size: 0.85rem;
     color: var(--pc-navy);
     text-decoration: none;
     letter-spacing: 0.04em;
     transition:
         background 0.15s,
         color 0.15s;
 }

 .cultural-dropdown li a:hover {
     background: var(--pc-light);
     color: var(--pc-red);
 }

 .cultural-dropdown li a i {
     color: var(--pc-gold);
 }

 .cultural-dropdown .dd-divider {
     height: 1px;
     background: #eee;
     margin: 0.4rem 0;
 }

 /* ══ MOBILE MENU ═════════════════════════════ */
 .pc-mobile-menu {
     display: none;
     background: #fff;
     border-top: 1px solid #eee;
     padding: 0.5rem 0 1rem;
 }

 .pc-mobile-menu.open {
     display: block;
 }

 .mob-link {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     padding: 0.75rem 1.5rem;
     font-size: 0.88rem;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     color: var(--pc-navy);
     text-decoration: none;
     border-bottom: 1px solid #f0ece6;
     transition:
         background 0.15s,
         color 0.15s;
 }

 .mob-link:hover {
     background: var(--pc-light);
     color: var(--pc-red);
 }

 .mob-link i {
     color: var(--pc-gold);
 }

 .mob-search {
     margin: 0.8rem 1.5rem 0;
     background: var(--pc-navy);
     color: #fff;
     border: none;
     border-radius: 2px;
     font-size: 0.82rem;
     letter-spacing: 0.05em;
     padding: 0.6rem 1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     text-transform: uppercase;
     cursor: pointer;
     width: calc(100% - 3rem);
     justify-content: center;
 }

 .mob-search:hover {
     background: var(--pc-red);
 }

 /* mobile cultural accordion */
 .mob-cultural-toggle {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0.75rem 1.5rem;
     font-size: 0.88rem;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     color: var(--pc-navy);
     border-bottom: 1px solid #f0ece6;
     cursor: pointer;
     user-select: none;
     transition: background 0.15s;
 }

 .mob-cultural-toggle:hover {
     background: var(--pc-light);
 }

 .mob-cultural-toggle .mob-caret {
     transition: transform 0.25s;
     font-size: 0.7rem;
 }

 .mob-cultural-toggle.open .mob-caret {
     transform: rotate(90deg);
 }

 .mob-cultural-sub {
     display: none;
     background: var(--pc-light);
 }

 .mob-cultural-sub.open {
     display: block;
 }

 .mob-cultural-sub a {
     display: flex;
     align-items: center;
     gap: 0.55rem;
     padding: 0.65rem 2.2rem;
     font-size: 0.83rem;
     color: var(--pc-navy);
     text-decoration: none;
     border-bottom: 1px solid #e8e2da;
     transition: color 0.15s;
 }

 .mob-cultural-sub a:hover {
     color: var(--pc-red);
 }

 .mob-cultural-sub a i {
     color: var(--pc-gold);
 }

 @media (max-width: 768px) {
     .pc-toggler {
         display: block;
     }

     .pc-desktop-nav {
         display: none !important;
     }
 }

 /* ══ HERO ════════════════════════════════════ */
 .pc-hero {
     position: relative;
     min-height: 78vh;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 40px;
 }

 /* Background Video */
 .hero-video {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transform: translate(-50%, -50%);
     z-index: -2;
 }

 .pc-hero::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom,
             rgba(0, 0, 0, 0.08) 0%,
             rgba(0, 0, 0, 0.32) 60%,
             rgba(0, 0, 0, 0.58) 100%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 680px;
     margin: 0 auto;
     text-align: center;
     padding: 2rem 1.5rem;
 }

 .hero-box {
     background: rgba(255, 255, 255, 0.83);
     backdrop-filter: blur(4px);
     padding: 2rem 2.5rem 1.6rem;
     border-top: 3px solid var(--pc-red);
     margin-bottom: 2rem;
 }

 .hero-box h1 {
     font-family: "Playfair Display", serif;
     font-size: clamp(1.5rem, 4vw, 3.2rem);
     color: var(--pc-navy);
     line-height: 1.2;
     margin-bottom: 1rem;
 }

 .hero-box p {
     font-size: clamp(0.95rem, 2.5vw, 1.2rem);
     color: #222;
     line-height: 1.55;
     margin: 0;
 }

 .hero-tagline {
     font-family: "Playfair Display", serif;
     font-style: italic;
     font-size: clamp(1rem, 3vw, 1.5rem);
     color: #fff;
     text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
 }

 .hero-copy {
     position: absolute;
     bottom: 0.5rem;
     right: 1rem;
     z-index: 3;
     font-size: 0.63rem;
     color: rgba(255, 255, 255, 0.65);
 }

 /* ══ FOOTER ══════════════════════════════════ */
 .pc-footer {
     background: #fff;
     border-top: 2px solid #e2ddd6;
 }

 /* top nav bar */
 .footer-topbar {
     background: #fff;
     border-bottom: 1px solid #e8e2da;
     padding: 0.65rem 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     gap: 0.3rem;
 }

 .footer-topbar a {
     font-size: 0.76rem;
     letter-spacing: 0.05em;
     color: var(--pc-navy);
     text-decoration: none;
     text-transform: uppercase;
     padding: 0 1rem;
     transition: color 0.2s;
 }

 .footer-topbar a:hover {
     color: var(--pc-red);
 }

 .footer-topbar .ftdiv {
     width: 1px;
     height: 14px;
     background: #bbb;
 }

 /* main area */
 .footer-main {
     background: var(--pc-navy);
     color: #c9c5bd;
     padding: 3rem 0 2rem;
 }

 .footer-main .brand-logo-f {
     width: 54px;
     height: 54px;
     border-radius: 50%;
     background: var(--pc-red);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.4rem;
     font-weight: 700;
     font-family: "Playfair Display", serif;
     margin-bottom: 0.9rem;
 }

 .footer-main .about-text {
     font-size: 0.85rem;
     line-height: 1.65;
     color: #fff;
     margin-bottom: 1.1rem;
 }

 .footer-main h6 {
     font-family: "Playfair Display", serif;
     color: #fff;
     font-size: 0.95rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin-bottom: 1rem;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.12);
 }

 .footer-main ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-main ul li {
     margin-bottom: 0.55rem;
 }

 .footer-main ul li a {
     color: #fff;
     font-size: 0.85rem;
     text-decoration: none;
     letter-spacing: 0.03em;
     transition: color 0.2s;
     display: flex;
     align-items: center;
     gap: 0.45rem;
 }

 .footer-main ul li a:hover {
     color: var(--pc-gold);
 }

 .footer-main ul li a i {
     font-size: 0.75rem;
     color: var(--pc-gold);
 }

 /* contact */
 .footer-contact p {
     font-size: 0.83rem;
     color: #fff;
     margin-bottom: 0.55rem;
     display: flex;
     gap: 0.5rem;
     align-items: flex-start;
 }

 .footer-contact p i {
     color: var(--pc-gold);
     margin-top: 0.15rem;
     flex-shrink: 0;
 }

 /* newsletter */
 .footer-newsletter input {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.18);
     border-radius: 2px;
     color: #fff;
     font-size: 0.82rem;
     padding: 0.5rem 0.8rem;
     width: 100%;
     margin-bottom: 0.6rem;
     outline: none;
     font-family: "EB Garamond", serif;
 }

 .footer-newsletter input::placeholder {
     color: #888;
 }

 .footer-newsletter input:focus {
     border-color: var(--pc-gold);
 }

 .footer-newsletter button {
     background: var(--pc-red);
     color: #fff;
     border: none;
     border-radius: 2px;
     padding: 0.5rem 1.2rem;
     font-size: 0.78rem;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     cursor: pointer;
     width: 100%;
     transition: background 0.2s;
     font-family: "EB Garamond", serif;
 }

 .footer-newsletter button:hover {
     background: var(--pc-gold);
     color: var(--pc-navy);
 }

 /* social */
 .footer-social-icons {
     display: flex;
     gap: 0.65rem;
     margin-top: 1rem;
 }

 .footer-social-icons a {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     border: 1px solid rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 0.95rem;
     text-decoration: none;
     transition:
         background 0.2s,
         color 0.2s,
         border-color 0.2s;
 }

 .footer-social-icons a:hover {
     background: var(--pc-red);
     color: #fff;
     border-color: var(--pc-red);
 }

 /* bottom bar */
 .footer-bottom {
     background: #111d33;
     padding: 0.9rem 1rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 0.5rem;
 }

 .footer-bottom p {
     font-size: 0.9rem;
     color: #fffdfd;
     margin: 0;
 }

 .footer-bottom .fb-links a {
     font-size: 0.73rem;
     color: #666;
     text-decoration: none;
     margin-left: 1rem;
     transition: color 0.2s;
 }

 .footer-bottom .fb-links a:hover {
     color: var(--pc-gold);
 }

 /* side label */
 .side-label {
     font-size: 0.62rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: #999;
     position: fixed;
     left: 0.5rem;
     top: 50%;
     transform: translateY(-50%) rotate(180deg);
     writing-mode: vertical-lr;
     z-index: 999;
     user-select: none;
 }

 @media (max-width: 576px) {
     .side-label {
         display: none;
     }
 }